Boost Site Speed with 3 Lines of Code
http://codefusionlab.co.cc/phpspeedy.html
Latest Updates RSS
-
FreeKill
-
FreeKill
Ratproxy - Passive Web Application Security Testing Software from Google
http://code.google.com/p/ratproxy/wiki/RatproxyDoc -
FreeKill
8 Premium One Line CSS Tips: http://cssglobe.com/post/1392/8-premium-one-line-css-tips
1. Vertical centering with line-height:
line-height: 24px;2. Prevent oversized content to break fixed width floated layouts
#main{
overflow:hidden;
}3. Prevent line breaks in links
a{
white-space:nowrap;
}4. Always show Firefox scrollbar
html{
overflow:-moz-scrollbars-vertical;
}5. Centering block elements horizontally
margin: 0 auto;
6. Remove vertical textarea scrollbar in IE
textarea{
overflow:auto;
}7. Force page breaks when printing your document
h2{
page-break-before:always;
}8. Remove active link borders
a:active, a:focus{
outline:none;
} -
FreeKill
How to Build a Working Poker Bot
http://www.codingthewheel.com/archives/how-i-built-a-working-poker-bot -
mightkill
-
mightkill
for (int $i = 0; i < 10; i++)
{
string a = “burp”;
cout << a;
} -
FreeKill
JQuery Image Fade
function showImage(src)
{
$("#loader img").fadeOut("slow")
.remove();
var largeImage = new Image();
$(largeImage).attr("src", src)
.load(function()
{
$(largeImage).hide();
$("#loader").removeClass("loading")
.append(largeImage);
$(largeImage).fadeIn("slow");
});
}
-
FreeKill
The perfect 3 column CSS Layout. I dunno if it’s perfect, but that’s what their calling it!
http://matthewjamestaylor.com/blog/perfect-3-column.htm -
mightkill